home *** CD-ROM | disk | FTP | other *** search
- /*
- * @(#) libmem.h 1.2 92/09/30
- */
- /***************************************************************************
- *
- * Copyright (c) 1990 The Santa Cruz Operation, Inc.
- *
- * All rights reserved. No part of this program or publication may be
- * reproduced, transmitted, transcribed, stored in a retrieval system,
- * or translated into any language or computer language, in any form or
- * by any means, electronic, mechanical, magnetic, optical, chemical,
- * biological, or otherwise, without the prior written permission of:
- *
- * The Santa Cruz Operation , Inc. (408) 425-7222
- * 400 Encinal St., Santa Cruz, California 95060 USA
- *
- **************************************************************************/
- /*
- * Modificaton History
- *
- * S001, 01-Jan-93, rickra
- * Did some minor clean up.
- * S000, 30-Sep-92, rickra
- * Added copyright and modification history
- */
- /*+-----------------------------------------------------------------------
- libmem.h
- ...!{gatech,emory}!n4hgf!wht
- ------------------------------------------------------------------------*/
- /*+:EDITS:*/
- /*:09-25-1990-05:11-wht@n4hgf-release heh-heh x0.22 preliminary */
- /*:09-15-1990-06:33-wht@n4hgf-adopt u386mon libraries */
- /*:08-10-1990-14:12-jmd@p1so/wht@n4hgf-2.20-add Tandem Integrity S2 */
- /*:08-07-1990-14:24-wht@n4hgf-nba@sysware.sysware.dk S5R31 updates */
- /*:08-02-1990-15:36-wht@n4hgf-2.12-old curses hacks+minor 3.2 formalizations */
- /*:07-28-1990-18:06-wht@n4hgf-2.10 release */
- /*:06-27-1990-01:57-wht@n4hgf-1.10-incorporate suggestions from alpha testers */
- /*:06-25-1990-04:14-wht@n4hgf-1.02-better error handling */
- /*:06-24-1990-20:53-wht@n4hgf-v1.01-add ISC support thanks to peter@radig.de */
- /*:06-21-1990-14:26-r@n4hgf-version x0.12 seems bug free */
- /*:10-28-1988-14:46-afterlint-creation */
-
- #ifndef BUILDING_LINT_ARGS
- #ifdef LINT_ARGS
-
- /* libmem.c */
- void minit(int );
- void mread(char *,long ,int );
- void mwrite(long ,char *,int );
-
- #else /* compiler doesn't mnow about prototyping */
-
- /* libmem.c */
- void minit();
- void mread();
- void mwrite();
-
- #endif /* LINT_ARGS */
- #endif /* BUILDING_LINT_ARGS */
-
- /* end of libmem.h */
-